<!--
			
			// Create arrays to contain all the values 
			// for image locations

			image = new Array

			image[1]="images/a04.jpg"
			image[2]="images/a05.jpg"
			image[3]="images/a06.jpg"
			image[4]="images/a07.jpg"
			image[5]="images/a08.jpg"
			image[6]="images/a09.jpg"


			// Create a random number between 1 and six
			random_num = (Math.round((Math.random()*5)+1))


			// Write the image tag with a random array element
			document.write("<img src=\"" + image[random_num] + "\">");

		

//-->

